Document Solutions for Imaging
GrapeCity.Documents.Imaging.Skia Assembly / GrapeCity.Documents.Imaging.Skia Namespace / GcSkiaGraphics Class / GcSkiaGraphics Constructor
The width of the image, in pixels.
The height of the image, in pixels.
Indicates whether the alpha channel should be ignored.
If not null, specifies the color to clear the drawing surface with.

In This Topic
    GcSkiaGraphics Constructor
    In This Topic
    Initializes a new instance of the GcSkiaGraphics.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal width As System.Integer, _
       ByVal height As System.Integer, _
       Optional ByVal opaque As System.Boolean, _
       Optional ByVal backColor As System.Nullable(Of Color) _
    )
    public GcSkiaGraphics( 
       System.int width,
       System.int height,
       System.bool opaque,
       System.Nullable<Color> backColor
    )

    Parameters

    width
    The width of the image, in pixels.
    height
    The height of the image, in pixels.
    opaque
    Indicates whether the alpha channel should be ignored.
    backColor
    If not null, specifies the color to clear the drawing surface with.
    See Also